home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / plotting / gnuplot3.lzh / gnuplot / makefile.amg < prev    next >
Makefile  |  1991-09-12  |  2KB  |  52 lines

  1. # Makefile for SAS/C 5.10 on the Amiga
  2.  
  3. CC = lc
  4.  
  5. # Remove '-fi' if you don't want to use the better Commodore math-routines.
  6. # If you do so, you'll have to change 'lcmieee.lib' to 'lcm.lib' in
  7. # "linkopt.amg"
  8. CFLAGS = -b0 -dAMIGA_LC_5_1 -dNOGAMMA -dMEMSET -dMEMCPY -j85i -j88i -fi
  9.  
  10. .c.o:
  11.     $(CC) $(CFLAGS) $<
  12.  
  13. OBJS = bitmap.o command.o contour.o eval.o graphics.o graph3d.o help.o \
  14.     internal.o misc.o parse.o plot.o scanner.o setshow.o \
  15.     standard.o term.o util.o version.o
  16.  
  17. CSOURCE1 = command.c setshow.c 
  18. CSOURCE2 = help.c graphics.c graph3d.o internal.c 
  19. CSOURCE3 = misc.c eval.c parse.c plot.c scanner.c standard.c 
  20. CSOURCE4 = bitmap.c term.c util.c version.c
  21. CSOURCE5 = term/aed.trm term/cgi.trm term/dumb.trm term/dxy.trm \
  22.     term/eepic.trm term/epson.trm term/fig.trm term/hp26.trm \
  23.     term/hp2648.trm term/hpgl.trm term/hpljii.trm term/vws.trm
  24. CSOURCE6 = term/impcodes.h term/imagen.trm term/object.h \
  25.     term/iris4d.trm term/kyo.trm term/latex.trm term/pc.trm \
  26.     term/amiga.trm
  27. CSOURCE7 = term/post.trm term/qms.trm term/regis.trm term/sun.trm \
  28.     term/t410x.trm term/tek.trm term/unixpc.trm term/unixplot.trm \
  29.     term/v384.trm term/x11.trm gnuplot_x11.c
  30. CSOURCE8 = contour.c
  31.  
  32. gnuplot: $(OBJS)
  33.     blink with linkopt.amg
  34.  
  35. bitmap.o: bitmap.c bitmap.h plot.h
  36. command.o: command.c plot.h setshow.h help.h
  37. contour.o: contour.c plot.h
  38. eval.o: eval.c plot.h
  39. graph3d.o: graph3d.c plot.h setshow.h
  40. graphics.o: graphics.c plot.h setshow.h
  41. help.o: help.c plot.h help.h
  42. internal.o: internal.c plot.h
  43. misc.o: misc.c plot.h setshow.h help.h
  44. parse.o: parse.c plot.h
  45. plot.o: plot.c plot.h setshow.h
  46. scanner.o: scanner.c plot.h
  47. setshow.o: setshow.c plot.h setshow.h
  48. standard.o: standard.c plot.h
  49. term.o: term.c term.h plot.h setshow.c bitmap.h $(CSOURCE5) $(CSOURCE6) $(CSOURCE7)
  50. util.o: util.c plot.h
  51. version.o: version.c
  52.